home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / etc / udev / rules.d / README < prev   
Text File  |  2008-10-24  |  1KB  |  35 lines

  1. The files in this directory are read by udev(7) and used when events
  2. are performed by the kernel.  The udev daemon watches this directory
  3. with inotify so that changes to these files are automatically picked
  4. up, for this reason they must be files and not symlinks to another
  5. location as in the case in Debian.
  6.  
  7. Files should be named xx-descriptive-name.rules, the xx should be
  8. chosen first according to the following sequence points:
  9.  
  10.   00   rules that it is critical to be run first, usually
  11.        only WAIT_FOR_SYSFS
  12.  
  13.   20   rules that change the name from the device from the default
  14.        (cannot be overriden)
  15.  
  16.   40   rules that set the permissions of device nodes
  17.        (can be overriden by later rules)
  18.  
  19.   60   rules that add symlinks to device nodes
  20.        (adds to those set in earlier rules)
  21.  
  22.   80   rules that run programs (but do not load modules)
  23.  
  24.   90   rules that load modules
  25.  
  26.   99   rules that it is critical to be run last
  27.  
  28.  
  29. This scheme has been chosen so that user-supplied rules are normally
  30. named 50-*.rules for the right thing to happen.
  31.  
  32. Packages should chose the approriate sequence point and add 5 to it
  33. (e.g. 25-iftab.rules, 45-libsane.rules, etc.) unless there is a need
  34. for a particular order.
  35.